home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / tcp / AmiSlate1_2.lha / AmiSlate / ExampleRexx / remotestringreq.rexx < prev    next >
OS/2 REXX Batch file  |  1995-05-24  |  446b  |  11 lines

  1. /* An ARexx script to demonstrate how to use RemoteStringRequest
  2.    to get a string of information from the remote user.  */
  3. parse arg CommandPort ActiveString
  4.  
  5. address (CommandPort)
  6. options results
  7.  
  8. RemoteStringRequest '"'||"Remote Rexx Request"||'"' '"'||"Blade Runner"||'"' '"'||"What is your favorite movie??"||'"' 
  9. WaitEvent MESSAGE stem answ.
  10. EasyRequest "Answer" '"'||"The Remote User's favorite movie is: "answ.message||'"' "Interesting"
  11.